home *** CD-ROM | disk | FTP | other *** search
- (set #dirname "SmartInfo")
-
- (if (= @language "suomi")
- (
- (set #destdir-prompt "Minne haluat asentaa ohjelman? Uusi hakemisto luodaan nimellä 'SmartInfo'.")
- (set #catchoice-prompt "Mitkä ylimääräiset kielet haluat asentaa?")
- )
-
- ; English
-
- (
- (set #destdir-prompt "Where should Voimariini be installed? A drawer named 'SmartInfo' will be created there.")
- (set #catchoice-prompt "Which additional languages do you want to install? English already installed.")
- )
- )
-
- (set @default-dest
- (askdir
- (prompt #destdir-prompt)
- (help @makedir-help)
- (disk)
- (default "")
- (newpath)
- )
- )
-
- (set @default-dest
- (tackon @default-dest #dirname)
- )
- (set #catalogs
- (tackon @default-dest "Catalogs")
- )
-
- (makedir @default-dest
- (infos)
- )
-
- (copyfiles
- (source "")
- (dest @default-dest)
- (pattern "SmartInfo#?")
- )
-
-
- (makedir #catalogs)
-
- (copyfiles
- (prompt #catchoice-prompt)
- (help @askchoice-help)
- (source "Catalogs")
- (dest #catalogs)
- (choices "Deutsch" "Français")
- (nogauge)
- (confirm)
- )
-
- (copyfiles
- (source "Catalogs")
- (pattern "#?.c?")
- (dest #catalogs)
- (nogauge)
- )
-